home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / (A)TB / (A)TBC.ADF / Quik_view05 / QView.doc < prev    next >
Text File  |  1988-09-01  |  3KB  |  97 lines

  1.                            QView 1.0  by Lyman Epp
  2.  
  3.         Another "File Viewer???"  What for?  It seems that all the other
  4.         file viewers have been written in "C".  This is okay, but the
  5.         programs are 10-20K.  This file viewer is written in assembler
  6.         and contains most of the features of the others, but the program
  7.         size is less than 3K bytes!  Also, the source is included so that
  8.         you can add more features (please send me a copy if you do.)
  9.         QView stands for "Quick View."
  10.  
  11.         This is being distributed as ShareWare.  If you think that QView
  12.         is useful, please send $10.  Your response will insure the release
  13.         of more quality programs for your Amiga!  Programs already in the
  14.         works include: a disk based print spooler, a window dump that
  15.         converts the window bitmap back to text, and more.  Be sure to
  16.         check out the latest shareware version of QMouse.
  17.  
  18.         The latest version of QView can always be found on the Wind Dragon
  19.         Inn BBS, (402)-291-8053.
  20.  
  21.                 Lyman R. Epp
  22.                 10072 Wirt Plaza #15
  23.                 Omaha, Nebraska 68134
  24.  
  25.  
  26.  
  27. FEATURES:
  28.  
  29.         - Fast screen updates.
  30.  
  31.         - Keyboard control of all features.  Many file viewers only allow
  32.           movement with mouse control.  QView is designed to be used by
  33.           touch typists.
  34.  
  35.         - Find a string of ASCII characters.
  36.  
  37.  
  38.  
  39. EXECUTE FROM A CLI, example:
  40.  
  41.     1> QView file
  42.  
  43.     If the file name contains spaces, it must be surrounded by quotes
  44.     (e.g. QView "test file").  Otherwise, quotes are optional.
  45.  
  46.  
  47. CONTROL CHARACTERS:
  48.  
  49.     ESC         Exit from QView.  The close gadget does this as well.
  50.  
  51.     Up          Scroll up one line.
  52.  
  53.     Ctrl-Up     Move to the top of the file.
  54.  
  55.     Alt-Up      Move to the top of the file.
  56.  
  57.     Shift-Up    Page up one screen.
  58.  
  59.     Down        Scroll down one line.
  60.  
  61.     Ctrl-Down   Move to the bottom of the file.
  62.  
  63.     Alt-Down    Move to the bottom of the file.
  64.  
  65.     Shift-Down  Page down one screen.
  66.  
  67.     Right       Scroll right 20 characters.  Current offset will be
  68.                 displayed in the title bar.
  69.  
  70.     Left        Scroll left 20 characters.  Current offset will be
  71.                 displayed in the title bar.
  72.  
  73.     Ctrl-Left   Move back to the left margin.  This is instead of
  74.                 repeatedly pressing the Left key.
  75.  
  76.     Alt-Left    Move back to the left margin.  This is instead of
  77.                 repeatedly pressing the Left key.
  78.  
  79.     S           Search for an ASCII string of characters.  QView will
  80.                 prompt for a string at the bottom of its window.  To
  81.                 cancel the search, just erase the string gadget with
  82.                 Right_Amiga-X.  All other string gadget sequences will
  83.                 also work.  QView will display the line containing the
  84.                 string at the top of the display.
  85.  
  86.     A           Continue searching for an ASCII string of characters.
  87.                 Must use "S" first to initialize the search string.
  88.  
  89.  
  90. SOURCE:
  91.  
  92.     Source may be assembled with the Metacomco assembler or with the
  93.     Manx assembler.  The Manx assembler creates about 5-10% smaller code!
  94.     See the included makefile for assembling with Manx.  This probably
  95.     won't assemble with versions of Manx before 3.6a.
  96.  
  97.